home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / tex-k-archive.past / tex-k-archive.gz / tex-k-archive / 000779_kuronen@admin1.gsf.fi_Fri Jul 15 10:38:53 1994.msg < prev    next >
Internet Message Format  |  1994-10-11  |  3KB

  1. Received: from admin1.gsf.fi by cs.umb.edu with SMTP id AA20331
  2.   (5.65c/IDA-1.4.4 for <tex-k@cs.umb.edu>); Fri, 15 Jul 1994 00:41:34 -0400
  3. Received: by admin1.gsf.fi (5.57/Ultrix3.0-C)
  4.     id AA20473; Fri, 15 Jul 94 07:38:54 +0300
  5. Date: Fri, 15 Jul 1994 07:38:53 +0300 (EET DST)
  6. From: Timo Kuronen <kuronen@admin1.gsf.fi>
  7. Sender: Timo Kuronen <kuronen@admin1.gsf.fi>
  8. Reply-To: Timo Kuronen <kuronen@admin1.gsf.fi>
  9. Subject: Re: converting to latex2e
  10. To: tex-k@cs.umb.edu
  11. In-Reply-To: <9407141641.AA08166@uluru.Stanford.EDU>
  12. Message-Id: <Pine.3.89.9407150741.B20449-0100000@admin1.gsf.fi>
  13. Mime-Version: 1.0
  14. Content-Type: TEXT/PLAIN; CHARSET=US-ASCII
  15.  
  16. On Thu, 14 Jul 1994, John Interrante wrote:
  17.  
  18. > I see that the dc fonts are in
  19. > /anonymous@ftp.shsu.edu:/tex-archive/fonts/dc
  20. > but the help.eng file in that directory says that the fonts do NOT
  21. > have specific driver files like "dcr10.mf."  If I understand help.eng
  22. > correctly, one has to input dxbase into Metafont and use an
  23. > interpolation algorithm to generate the .pk fonts.  
  24.  
  25. In the directory where dcr.mf resides you have to give command:
  26. tex dcstdedt.tex 
  27. That generates all customary point sizes, dcr10.mf for instance.
  28. You may modify dcstdedt.tex at your will. 
  29.  
  30. > I see that the
  31. > MakeTeXPK distributed with dvipsk knows nothing about dc fonts or how
  32. > to generate them.  Have you modified MakeTeXPK?  If so, could you post
  33. > the modifications so Karl can include them in the next release and
  34. > allow *everyone* to print European latex files?
  35.  
  36. The problem in MakeTeXPK is that it doesn't know about KB's kpathsea.
  37. It recognizes only the mode (qmsesz).
  38. It has 'hard-coded' DESTDIR which probably is not what you need.
  39.  
  40. You can generate all necessary pk-files as a batch run:
  41.  
  42. #!/bin/sh
  43. MakeTeXPK dcr5 600 600 magstep\(0.0\) qmsesz
  44. MakeTeXPK dcr6 600 600 magstep\(0.0\) qmsesz
  45. MakeTeXPK dcr7 600 600 magstep\(0.0\) qmsesz
  46. ...
  47.  
  48. and move them to proper directory, e.g.
  49. /usr/local/lib/texmf/fonts/public/dc/pk/qmsesz
  50. or whatever. You would not need MakeTeXPK any more afterwards.
  51.  
  52. You may also modify MakeTeXPK to select DESTDIR more carefully, like:
  53. case "$1" in
  54.     dc*) DESTDIR="/usr/local/lib/texmf/fonts/public/dc/pk";;
  55.     cm*) DESTDIR="/usr/local/lib/texmf/fonts/public/cm/pk";;
  56.   logo*) DESTDIR="/usr/local/lib/texmf/fonts/public/logo/pk";;
  57.       *) DESTDIR="/usr/local/lib/texmf/fonts/tmp/pk";;
  58. esac
  59. I hate this solution but I couldn't figure out anything more ingenious.
  60.  
  61. In your text file you have to indicate Cork encoding:
  62. \NeedsTeXFormat{LaTeX2e}[1994/06/01]
  63. \documentclass[12pt,twoside]{article}
  64. \usepackage{t1enc}
  65.  
  66. Timo
  67.  
  68. ***************************************************************************
  69. Timo Kuronen                            Internet:     Timo.Kuronen@gsf.fi
  70. Geological Survey of Finland            Phone:        Int. +358-0-4693 2379
  71. Betonimiehenkuja 4                      FAX:          Int. +358-0-462 205
  72. FIN-02150 ESPOO
  73. FINLAND
  74.  
  75.